home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000020_news@columbia.edu _Tue Aug 3 16:46:28 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA23760
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 3 Aug 1999 16:46:27 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA13665
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 3 Aug 1999 16:36:12 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: "B.Won" <wonb@digiflex.ca>
  10. Subject: Re: 'send' doesn't work.
  11. Date: Tue, 3 Aug 1999 14:41:12 -0600
  12. Message-ID: <37a7529c.0@news.cadvision.com>
  13. Organization: CADVision Development Corporation (http://www.cadvision.com/)
  14. To: kermit.misc@columbia.edu
  15.  
  16.  
  17. Frank da Cruz wrote in message <7o7alu$5df$1@newsmaster.cc.columbia.edu>...
  18. >In article <7o7a23$4vc$1@newsmaster.cc.columbia.edu>,
  19. >Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  20. >: In article <37a7282a.0@news.cadvision.com>, B.Won <wonb@digiflex.ca>
  21. wrote:
  22. >: : Frank da Cruz wrote in message <7nsndv$ncc@watsun.cc.columbia.edu>...
  23. >: : >In article <37a1dc7e.0@news.cadvision.com>,B.Won <wonb@digiflex.ca>
  24. wrote:
  25. >: : >: I am trying to transmit a file between 2 alpha VMS environment.  The
  26. >: : >: connection go thru a terminal server.
  27. >: : >:
  28. >: : >: From the host side, to connect I type in the following:
  29. >: : >: $ kermit
  30. >: : >:
  31. >: : >Is it C-Kermit?  Which version?  See:
  32. >: : >
  33. >: : >  http://www.columbia.edu/kermit/ckermit.html
  34. >: : >
  35. >: : >for current version info.
  36. >: :
  37. >: : ==>Kermit version at both ends are the same, C-kermit 6.0.192
  38. >: :
  39. >: : >: set line tta0
  40. >: : >: connect
  41. >: : >:  at
  42. >: : >:  atdt######
  43. >: : >: (connects to remote terminal server, logs into remote/client alpha)
  44. >: : >:
  45. >: : >: at  the remote alpha, I entered the following:
  46. >: : >: $ mc kermit
  47. >: : >:
  48. >: : >Which Kermit program and version is this one?
  49. >: : >
  50. >: : >: server
  51. >: : >:  (message comes up to switch to host mode to transmit, etc...)
  52. >: : >:  (I entered the control combination keystrokes to switch to host)
  53. >: : >:
  54. >: : >: at host kermit, I issue a 'send' command for a text file and nothing
  55. >: : >: happens...
  56. >: : >:
  57. >: : >So you escaped back and have the originating Kermit's prompt.  Did
  58. >: : >you give a "receive" command?
  59. >: :
  60. >: : ==> after I type in 'send abc.txt' at the originating Kermit, I never
  61. go
  62. >: : the prompt back...
  63. >: :
  64. >: Then that's why nothing happens.  Follow the instructions for how to
  65. transfer
  66. >: files in the manual.  Very briefly, after you have given the SEND command
  67. to
  68. >: the remote Kermit program, type Ctrl-\ (hold down the Ctrl key and press
  69. the
  70. >: backslash key), then the letter C.  Now you have the local Kermit's
  71. prompt.
  72. >: Now type "receive" and then press the Enter key.
  73. >:
  74. >Oops, sorry -- I didn't notice that you put the remote in server mode, so
  75. >instead of "receive" you should type "get filename", where "filename" is
  76. the
  77. >name of the file you want to download.
  78. >
  79. >The escaping back part should have been clear since when you make the
  80. >connection it says:
  81. >
  82. >  Connecting to (blah blah...)
  83. >  The escape character is Ctrl-\ (ASCII 28, FS)
  84. >  Type the escape character followed by C to get back,
  85. >  or followed by ? to see other options.
  86. >
  87. >and then when you put the remote in server mode, it says:
  88. >
  89. >  Entering server mode.  If your local Kermit software is menu driven, use
  90. >  the menus to send commands to the server.  Otherwise, enter the escape
  91. >  sequence to return to your local Kermit prompt and issue commands from
  92. >  there.  Use SEND and GET for file transfer.  Use REMOTE HELP for a list
  93. of
  94. >  other available services.  Use BYE or FINISH to end server mode.
  95. >
  96. >- Frank
  97.  
  98.  
  99. But that's not what I want to do..  I wanted to send a file over to remote.
  100. Shouldn't I 'escaped back' to my local kermit, and type in 'send
  101. <filename>'?
  102. I
  103.